Simon Clitherow [Wed, 12 Mar 2003 22:45:34 +0000 (22:45 +0000)]
updated intern project files to suit the lib dir move.
Simon Clitherow [Wed, 12 Mar 2003 21:40:56 +0000 (21:40 +0000)]
- updated MSVC project files to suit the lib dir move - better late than never!
- blenderplayer and the web plugin now compile again (now using OpenAL)
Michel Selten [Sat, 8 Mar 2003 18:10:20 +0000 (18:10 +0000)]
Swig is unfortunately not an option anymore. This means implementing all
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
Simon Clitherow [Sun, 2 Mar 2003 14:14:03 +0000 (14:14 +0000)]
Applied curve editing bugfix submitted by Klaus Stengel (nathanel)
http://projects.blender.org/tracker/index.php?func=detail&aid=100&group_id=9&atid=127
Simon Clitherow [Sun, 2 Mar 2003 13:46:07 +0000 (13:46 +0000)]
- removed files no longer created during freeze.
- removed '-2.26' prefix from the blender exe.
Michel Selten [Wed, 26 Feb 2003 19:22:24 +0000 (19:22 +0000)]
Implemented enough functionality to actually execute Python from within
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
Frank van Beek [Mon, 24 Feb 2003 19:04:20 +0000 (19:04 +0000)]
- python include path is now taken from nan_definitions.mk
Hans Lambermont [Sun, 23 Feb 2003 19:57:52 +0000 (19:57 +0000)]
lib/ just moved to ../
Kent Mein [Fri, 21 Feb 2003 18:42:56 +0000 (18:42 +0000)]
zel365 showed me this bug with deleting nla keys...
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
Kent Mein [Fri, 21 Feb 2003 16:40:29 +0000 (16:40 +0000)]
Added Goofsters alt-m menu for merging verts while in edit mode menu.
Kent
Kent Mein [Fri, 21 Feb 2003 15:37:55 +0000 (15:37 +0000)]
The first two files enables building of plugins under macosx.
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
Michel Selten [Wed, 19 Feb 2003 19:20:11 +0000 (19:20 +0000)]
Added flag '--enable-exppython' to the auto* build environment.
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
Simon Clitherow [Wed, 19 Feb 2003 18:55:31 +0000 (18:55 +0000)]
Fixed a typo in my addy (of all places!) ;)
Hans Lambermont [Mon, 17 Feb 2003 16:51:16 +0000 (16:51 +0000)]
- fix 'debug' target
- add ID and copyrights to top level makefile
Rob Haarsma [Mon, 17 Feb 2003 12:30:11 +0000 (12:30 +0000)]
fixed mousewheel behaviour in editmode
Chris Want [Sun, 16 Feb 2003 00:12:06 +0000 (00:12 +0000)]
It turns out that the "Pressing AKEY to deselect all objects still
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.
Chris Want [Sat, 15 Feb 2003 04:18:22 +0000 (04:18 +0000)]
gcc 3.2.1 seems to have problems casting a double like 32772.0 to
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).
Chris Want [Fri, 14 Feb 2003 15:29:24 +0000 (15:29 +0000)]
I decremented the 'user' of the deleted ipo,
but it had already been decremeted elsewhere.
Thanks to zel365 for the head's up.
Chris Want [Fri, 14 Feb 2003 03:24:45 +0000 (03:24 +0000)]
Fix to make plugins work on windows (last system error code for
the thread wasn't getting reset). Somebody with more windows
saavy might want to check that this doesn't break other stuff.
Chris Want [Thu, 13 Feb 2003 23:30:51 +0000 (23:30 +0000)]
This modification removes a bone's
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.
Chris Want [Thu, 13 Feb 2003 16:56:42 +0000 (16:56 +0000)]
Some small de-optimizations :)
Reverting this file to it's original
version fixed a bug involving particles
and lattices.
Hans Lambermont [Tue, 11 Feb 2003 12:35:18 +0000 (12:35 +0000)]
- glue top level makefile and release one together
- fix 8 spaces problem in release/Makefile
Maarten Gribnau [Mon, 10 Feb 2003 22:26:32 +0000 (22:26 +0000)]
pointed PB to the frozen files in the obj tree
removed old splash and added the new 2.26 screen (beautiful as always)
maarten
Frank van Beek [Mon, 10 Feb 2003 17:43:41 +0000 (17:43 +0000)]
- add GPL-license to installer
- add options in installer to create desktop icon and register .blend files
Frank van Beek [Mon, 10 Feb 2003 17:41:47 +0000 (17:41 +0000)]
- change GPL_license to dos text
Chris Want [Mon, 10 Feb 2003 15:01:54 +0000 (15:01 +0000)]
Changes to deal with the single splash file
Chris Want [Mon, 10 Feb 2003 14:59:10 +0000 (14:59 +0000)]
Another change to replace fmod with OpenAL
Ton Roosendaal [Mon, 10 Feb 2003 14:36:25 +0000 (14:36 +0000)]
- GPL license text now included in the binary distros as well.
Ton Roosendaal [Mon, 10 Feb 2003 14:23:09 +0000 (14:23 +0000)]
- As promised, the listing with names of people who have sponsored
to make the sources open. It adds another 180k to the download, but
luckily only once!
Rob Haarsma [Mon, 10 Feb 2003 14:14:35 +0000 (14:14 +0000)]
patched default wheellinescroll usersetting
Rob Haarsma [Mon, 10 Feb 2003 14:13:51 +0000 (14:13 +0000)]
removed default wheellinescroll usersetting (didnt work here)
Frank van Beek [Mon, 10 Feb 2003 11:50:07 +0000 (11:50 +0000)]
- removed debug line from windows/specific.sh
- deinstalling Blender now also removes "%PROGRAMFILES%\Blender Foundation"
if it's empty
Frank van Beek [Mon, 10 Feb 2003 11:41:49 +0000 (11:41 +0000)]
- mixed up python version and blender version ;-)
Frank van Beek [Mon, 10 Feb 2003 11:30:12 +0000 (11:30 +0000)]
- display Blender version number in title of installer
Frank van Beek [Mon, 10 Feb 2003 11:07:14 +0000 (11:07 +0000)]
- windows/specific.sh now creates a custom NSIS configuration file for this
release and executes NSIS to build the Blender intaller
Frank van Beek [Mon, 10 Feb 2003 10:44:26 +0000 (10:44 +0000)]
- export VERSION so specific.sh can use it
- made remove in the final directory a bit more specific
Frank van Beek [Mon, 10 Feb 2003 09:20:27 +0000 (09:20 +0000)]
- updated url to http://www.blender3d.org/Support/
Stefan Gartner [Mon, 10 Feb 2003 01:08:56 +0000 (01:08 +0000)]
added new splash screen
Kent Mein [Mon, 10 Feb 2003 00:18:29 +0000 (00:18 +0000)]
Modified ld flags on SunOS changed -O2 to -O
because sun's compiler does not support -O2.
Kent
Hans Lambermont [Sun, 9 Feb 2003 22:01:05 +0000 (22:01 +0000)]
fix clean target
Simon Clitherow [Sun, 9 Feb 2003 21:59:35 +0000 (21:59 +0000)]
Added files for using NSIS (nsis.sourceforge.net) as an alternative self-install/uninstall system for windows.
Simon Clitherow [Sun, 9 Feb 2003 20:59:35 +0000 (20:59 +0000)]
removed fmod lib from blender target and added openal_static lib (MSVC)
Frank van Beek [Sun, 9 Feb 2003 20:51:14 +0000 (20:51 +0000)]
- build and link against OpenAL instead of FMod on windows
Note: this needs to be changed in the projectfiles as well
Stefan Gartner [Sun, 9 Feb 2003 20:15:39 +0000 (20:15 +0000)]
don't use fmod on darwin
Simon Clitherow [Sun, 9 Feb 2003 19:34:22 +0000 (19:34 +0000)]
added a disabled notice when pressing PKEY and building without game engine.
Stefan Gartner [Sun, 9 Feb 2003 19:20:18 +0000 (19:20 +0000)]
disabled "Start Game" menu entry and button when building without
gameengine
Stefan Gartner [Sun, 9 Feb 2003 18:32:55 +0000 (18:32 +0000)]
fill in correct values for VERSION and DATE when building the
application bundles
Stefan Gartner [Sun, 9 Feb 2003 18:22:45 +0000 (18:22 +0000)]
updated copyright notice
Rob Haarsma [Sun, 9 Feb 2003 17:55:49 +0000 (17:55 +0000)]
added default variable (3) for the wheellinescroll usersetting
Frank van Beek [Sun, 9 Feb 2003 17:17:00 +0000 (17:17 +0000)]
- changed version to 2.26 instead of 2.26a
Rob Haarsma [Sun, 9 Feb 2003 15:51:20 +0000 (15:51 +0000)]
fixed mousewheel linescrolling.
Frank van Beek [Sun, 9 Feb 2003 15:43:45 +0000 (15:43 +0000)]
- upped BLENDER_VERSION to 226
Frank van Beek [Sun, 9 Feb 2003 15:25:02 +0000 (15:25 +0000)]
make in the release directory now works correctly again on windows
- updated Help.url -> http://www.blender3d.org/Community/websites.php
- export $(DISTDIR) from Makefile
- chmod +x windows/specific.sh
- use awk to generate dos txt files instead of perl, perl stuff was broken
- chmod +x python22.dll, otherwise blender refuses to start
Rob Haarsma [Sun, 9 Feb 2003 15:16:36 +0000 (15:16 +0000)]
prevented loading of .dotfiles as an image,
bugfix added for illegal avi/anim handling.
Rob Haarsma [Sun, 9 Feb 2003 12:47:43 +0000 (12:47 +0000)]
disabled loading of bmp files :(
Rob Haarsma [Sun, 9 Feb 2003 11:31:17 +0000 (11:31 +0000)]
small patch to disable new drawingroutines on sgi
Ton Roosendaal [Sat, 8 Feb 2003 15:46:48 +0000 (15:46 +0000)]
- adapted versions of the README and Copyright files
Stefan Gartner [Sat, 8 Feb 2003 13:51:55 +0000 (13:51 +0000)]
don't close the render window on OS X
Simon Clitherow [Sat, 8 Feb 2003 13:46:13 +0000 (13:46 +0000)]
the last of the FUTURE_PYTHON_API changes for MSVC.
Rob Haarsma [Sat, 8 Feb 2003 12:59:25 +0000 (12:59 +0000)]
added mousewheel for zooming circleselect
Kent Mein [Thu, 6 Feb 2003 17:14:22 +0000 (17:14 +0000)]
I added some of the changes I made to bmake at:
http://www.cs.umn.edu/~mein/blender/plugins/bmake
Basically added options for Darwin, and made a var $EXT
that gets set to so, dll or dynlib depending on the platform.
It looks like I'm still getting linking errors on macosx on some of the plugins
but its a good start.
Kent
Rob Haarsma [Thu, 6 Feb 2003 14:04:47 +0000 (14:04 +0000)]
added filetype for python (.py) scripts
(orange square in front of the name)
Rob Haarsma [Thu, 6 Feb 2003 14:03:51 +0000 (14:03 +0000)]
added filetype for python (.py) scripts
Wouter van Heyst [Thu, 6 Feb 2003 03:30:25 +0000 (03:30 +0000)]
Revert to the FUTURE_PYTHON_API, this means:
- switching the define on in buildsystems (NaN, auto and msvc are done)
- again import _Blender, which is the C module, from the Python modules
Stefan Gartner [Wed, 5 Feb 2003 15:13:42 +0000 (15:13 +0000)]
added darwin, changed package name from blender-creator to blender
Rob Haarsma [Tue, 4 Feb 2003 12:30:52 +0000 (12:30 +0000)]
minor (2.26 release) cleanup
Simon Clitherow [Mon, 3 Feb 2003 22:27:30 +0000 (22:27 +0000)]
removed obsolete msvc projectfiles.
Simon Clitherow [Mon, 3 Feb 2003 22:21:35 +0000 (22:21 +0000)]
fixed dependancies for blender target and removed unneeded projects from workspace. (MSVC)
Kent Mein [Mon, 3 Feb 2003 20:58:21 +0000 (20:58 +0000)]
Ok this should fix up make inside of blender/release
you can also do a make release inside of blender/source
Should this be moved to the rootdir or do we want it sort of hidden?
Also I only tested it on linux so feel free to give it a shot it probably will
need some tweaks for other platforms but hey :)
I set VERSION to 2.26a wasn't sure what we want it to be.
Kent
Kent Mein [Mon, 3 Feb 2003 16:29:30 +0000 (16:29 +0000)]
I took out the include since it was causing problems on some platforms
and added targets for clean, debug and test, so we don't need the include.
Kent
Wouter van Heyst [Mon, 3 Feb 2003 03:56:41 +0000 (03:56 +0000)]
Makefile
- fix make/shell buglet to make use of --no-print-directory for cleaner logs
- Conform to the nan_subdirs.mk mechanism of building
intern/Makefile
- include nan_subdirs.mk again
This enables people to run make clean and all those other targets from the top
level dir again, 'make source' has been lost for now
Wouter van Heyst [Mon, 3 Feb 2003 01:46:29 +0000 (01:46 +0000)]
Change a freebsd and Linux/ppc case to first build blenderdynamic, and blenderstatic after that.
This works around tinderbox bailing out on static and thus burning, the static
build still breaks but we're not checking that in tinderbox yet.
Stefan Gartner [Sun, 2 Feb 2003 17:53:41 +0000 (17:53 +0000)]
replace "blenderpublisher" with "blender"
Stefan Gartner [Sun, 2 Feb 2003 17:28:15 +0000 (17:28 +0000)]
build the OSX application bundle in $(DIR)/bin
Wouter van Heyst [Sun, 2 Feb 2003 16:45:32 +0000 (16:45 +0000)]
Correct typo in blenderstatic rule
Kent Mein [Sun, 2 Feb 2003 15:38:42 +0000 (15:38 +0000)]
Modified the Makefile to build just blender now instead of blenderpublisher
blendercreator....
This might break tinderbox but we need to commit it to test it to
get it working fully. :)
Kent
Michel Selten [Sat, 1 Feb 2003 12:01:41 +0000 (12:01 +0000)]
This small update should fix the build errors in python/freeze.
I added a check if the output directory (../frozen) exists and will create
the directory if it does not exist.
This time I tested it also with the NaN make environment :)
Michel
Stefan Gartner [Sat, 1 Feb 2003 08:25:09 +0000 (08:25 +0000)]
added simple shaded+wire and solid+wire drawmodes. It basically draws
the wireframe after drawing the model in solid/shaded/textured mode.
The user can set this per object using the "Wire" button in the
edit buttons window.
Michel Selten [Fri, 31 Jan 2003 20:24:18 +0000 (20:24 +0000)]
Now the make freeze is done when any of the *.py files in intern/python
is updated.
* modulefinder creates a file src.list which contains all the *.py files
needed for the python suport in Blender.
* Makefile.am is able to depend on the files listed in src.list.
* makemakefile_ac.py is reverted to the previous version. The old version
contained my first attempt to get the make freeze trick working. It was
wrong.
Michel
Rob Haarsma [Fri, 31 Jan 2003 17:22:20 +0000 (17:22 +0000)]
added mousewheel support for UV Image window
Rob Haarsma [Fri, 31 Jan 2003 17:21:29 +0000 (17:21 +0000)]
added mousewheel support
Kent Mein [Thu, 30 Jan 2003 20:05:04 +0000 (20:05 +0000)]
opps had a typo...
Kent
Kent Mein [Thu, 30 Jan 2003 18:51:05 +0000 (18:51 +0000)]
Modified checks for defined __FreeBSD__ to also include defined (__OpenBSD__)
From: http://www.blender.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=840
Kent
Stefan Gartner [Thu, 30 Jan 2003 14:20:08 +0000 (14:20 +0000)]
added NTSC preset (Image size - 720x480, Aspect ratio - 10x11, 30 fps)
PAL and PAL 16:9 presets set frs_sec to 25
I know 30 fps isn't quite correct for NTSC, but it's close :)
Stefan Gartner [Thu, 30 Jan 2003 13:19:26 +0000 (13:19 +0000)]
added "fake user" button (basically a shortcut for pressing Shift+F4 and F)
Chris Want [Thu, 30 Jan 2003 06:19:49 +0000 (06:19 +0000)]
Extra selection support for the action window, including:
- border select initiated in the channel names border
selects the channels and constraint channels.
- right click or border select initiated in the horizontal
scroll causes blender to select all keys for the selected
frames.
- right click or border select in the vertical scroll
causes blender to select all keys for the channel or
constraint channels that are to the left of the selection.
Kent Mein [Thu, 30 Jan 2003 03:13:56 +0000 (03:13 +0000)]
added
#ifdef USE_SUMO_SOLID
around this line.
#include "SM_Scene.h"
Kent
Kent Mein [Thu, 30 Jan 2003 02:47:29 +0000 (02:47 +0000)]
Added multitest to the targets that get built for tests for ghost.
Kent
Chris Want [Wed, 29 Jan 2003 19:49:22 +0000 (19:49 +0000)]
Ignore WM_DELETE_WINDOW on IRIX (somebody smarter than me please
check this for correctness).
Rob Haarsma [Wed, 29 Jan 2003 13:49:25 +0000 (13:49 +0000)]
added win32 style ctrl keystrokes for cut/copy/paste/undo/redo
Rob Haarsma [Wed, 29 Jan 2003 12:18:25 +0000 (12:18 +0000)]
fixed error message, bmp header wasn't included
Rob Haarsma [Wed, 29 Jan 2003 11:29:06 +0000 (11:29 +0000)]
added loading of bmp images. (bmp code was already present in blender)
Rob Haarsma [Wed, 29 Jan 2003 11:28:15 +0000 (11:28 +0000)]
added iff, lbm and bmp filetypes to the fileselect. added loading of bmp images,
modified drawing of the imageselect, and a bugfix for popups.
Chris Want [Wed, 29 Jan 2003 05:37:24 +0000 (05:37 +0000)]
The other part of sgefant's fullscreen by default patch: turning
off fullscreen using the -w flag.
Chris Want [Wed, 29 Jan 2003 04:45:13 +0000 (04:45 +0000)]
Mousewheel under X11 (patch by Martin Vollrathson)
Chris Want [Wed, 29 Jan 2003 04:42:25 +0000 (04:42 +0000)]
Full screen by default under Unix (patch by sgefant)
Chris Want [Tue, 28 Jan 2003 19:54:19 +0000 (19:54 +0000)]
CKEY in the action window scrolls the window so that the current frame
is in the center.
Simon Clitherow [Tue, 28 Jan 2003 19:39:06 +0000 (19:39 +0000)]
Modified MSVC intern projectfiles - XCOPY doesn't need the /E option.
Updated README to suit the new 'merged' blender target.
--aphex
Rob Haarsma [Tue, 28 Jan 2003 12:14:47 +0000 (12:14 +0000)]
added mousewheel support part 3
Rob Haarsma [Tue, 28 Jan 2003 11:14:38 +0000 (11:14 +0000)]
added mousewheel support part 2