Commit Graph

594 Commits

Author SHA1 Message Date
Nathan Letwory
efdec1bbeb updated include directories. Using msvc7 projectfile macros. 2003-05-20 11:21:17 +00:00
Nathan Letwory
530e1e2cf2 moved one dir up. 2003-05-20 11:10:46 +00:00
Nathan Letwory
ac1b9540e8 move it one dir up. 2003-05-20 11:09:40 +00:00
Nathan Letwory
b2b70137e9 updated msvc7 project files and solution file. Updated to reflect new include directories. Added WITH_QUICKTIME, WITH_FREETYPE2 and INTERNATIONAL to the subprojects that needed them.
created FTF_ttfont and blenderqt.
2003-05-20 11:02:32 +00:00
4ca6f542a2 * Implemented the 3 functions needed by the Object module:
For  Camera and Lamp
* Minor updates, NMesh is not finished yet.
2003-05-20 03:56:41 +00:00
1a87f3a4aa Guignot implemented 3 functions needed by the Object Module 2003-05-20 03:53:30 +00:00
Nathan Letwory
59cedf343e MSVC7 Solution file. The main entry for MSVC7. Project files will follow shortly. 2003-05-19 12:48:37 +00:00
612123e8fd * Updated the naming convention for some functions. I forgot those the last
time.
* Created the M_ObjectCheckPyObject and M_ObjectFromPyObject functions. These
  are needed for interfacing to other modules.
* The Object methods have been created. Not all of them are implemented yet.
2003-05-17 13:46:15 +00:00
d03323b1c3 * Added Blender.Curve submodule, written by Jacques Guignot (guignot):
Jacques contributed a new module to exppython, one that isn't available
    in the current 2.27 API.  Welcome, guignot : ).
2003-05-17 07:08:08 +00:00
ed78dcc96c * Added submodule NMesh:
Partially implemented.  Most of it comes from opy_nmesh.c, plus needed
    changes to integrate in into exppython.
* Added helper submodule vector, needed by NMesh.
* Minor changes in other files.
2003-05-17 04:29:49 +00:00
7c48bec899 Fixed nasty issue when aborting Quicktime rendering. 2003-05-16 14:31:31 +00:00
ef736e8bcc reverted to 2.27 original fontcoloring method
reverted to patched ftgl library.

speed improvements were not really noticable.
2003-05-16 12:48:38 +00:00
447dd3c959 Seeing all comments on the interface slowdown, I decided to try a different
approach for the coloring of interface texts. Currently two seperate fonts get
generated, one black and one white, which eliminates the glPixelTransfer
command. (which assumably caused the huge slowdowns)

Please try, and post your experiences on the interface drawing speed.
NOTE: for this new method you need the *unmodified* FTGL library:
http://homepages.paradise.net.nz/henryj/code/#FTGL

Apologies on any inconveniences...
2003-05-15 17:01:00 +00:00
a97264fffd - Copy the font and .Blanguages into the end result 2003-05-14 20:25:40 +00:00
6d00de3798 updated release makefiles and self installer script for windows 2003-05-14 18:36:48 +00:00
f258cf60b5 - Remove duplicates from po files
- Provide debug target
- Run msgfmt on all but fi.po
2003-05-14 15:04:27 +00:00
Chris Want
05245ef6f1 Irix doesn't like 'cp -a' for recursive copying 2003-05-14 13:47:36 +00:00
71fa539b93 - updated iff.h, for compatibility with blender itself
this fixes zbuffer reading for plugins again
2003-05-14 13:25:47 +00:00
adacfb1b15 just translated imbuf struct 2003-05-14 13:24:49 +00:00
3ce849949e doubled the size of the string to be translated, which fixes
the italian mo crash.
2003-05-14 10:01:36 +00:00
c760bd6e3c don't crash when adding an object after the previously selected object
has been deleted (thanks to Bischofftep for pointing this out)
2003-05-14 00:23:58 +00:00
1bcb3b251e .mo files were created in the wrong directory on os x (d'oh!) 2003-05-13 22:41:39 +00:00
a502c1721f use $(NANBLENDERHOME) instead of ../.. 2003-05-13 22:00:44 +00:00
e87cbd5667 Added some comments on FTGL
Kent
2003-05-13 19:45:57 +00:00
70dab87ac3 revert to previous version, as starting blender maximized on os x doesn't
seem to be ready for prime time yet
2003-05-13 14:52:51 +00:00
83b5ef6523 fixed some more screenupdate issues and eliminated a crash
when trying tio shear/warp not visible objects. (thanks Matt)
2003-05-13 14:22:28 +00:00
e6ea8d356e added Dutch and Catalan preliminary translations. 2003-05-13 13:53:36 +00:00
d362a1191e updated blender icon for os x 2003-05-13 13:50:24 +00:00
efaeeb6a87 maximize blender window on startup on os x 2003-05-13 12:14:52 +00:00
1beb81a319 create .po files in the application bundle on os x 2003-05-13 11:30:22 +00:00
ee8693d6bf don't copy the .blender dir to $DISTDIR on OS X, as it's contents is
already in the application bundle
2003-05-13 11:29:25 +00:00
d40cb3da9f fixed minor text color issue. 2003-05-13 10:34:33 +00:00
060f1b068d - Add po/ to the list of subdirs. 2003-05-13 10:31:25 +00:00
c52ed2fcc4 - Preliminary makefile that just calls msgfmt on po files
Start with the italian translation (least buggy)
2003-05-13 10:28:52 +00:00
b210d7de47 Copy the .blender directory into DESTDIR for bundling up with release. 2003-05-13 10:08:43 +00:00
47aaca72e0 moved BKE_utildefines behind __APPLE__ #ifdef. 2003-05-13 09:28:39 +00:00
Chris Want
769d724d83 Static linking of freetype, libintl from sgi freeware for irix
and made WITH_FREETYPE2 independent of INTERNATIONAL (please
test).
2003-05-13 03:30:26 +00:00
b9f6d66328 * Added 3 missing functions, 2 of them called by blender/src/drawtext.c:
Callbacks registered with Draw.Register in Python are called now.
    That should fix submodule Blender.Draw.
* Added a few other missing functions to BPY_interface.c
* Finished implementing Get() function for Camera, Lamp, Image and Text:
    Both the .Get(name) and .Get() cases are handled now.
* Added function Blender.ReleaseGlobalDict():
    This function should give script writers control over whether the
    global Python Interpreter Dict should be cleared after the script is
    run (default is to clear).  This is a test.
2003-05-13 01:54:28 +00:00
eca049b177 store locales, .Blanguage, and .bfont.ttf inside of Resources folder of
application bundle on OS X
2003-05-12 18:12:25 +00:00
936f7541c4 moved #include <sys/param.h> inside #ifdef __APPLE__ 2003-05-12 17:13:12 +00:00
ab3b02405f removed obsolete files 2003-05-12 16:33:19 +00:00
c4d7bf719f added French and Spanish preliminary translations. 2003-05-12 16:17:00 +00:00
a267433edc added .blenderdir/locale and preliminary translations. 2003-05-12 15:52:57 +00:00
23e8e19f5c added function to get the full path to the application bundle on os x 2003-05-12 14:59:08 +00:00
331eb81e09 modified so .Blanguages and .bfont get loaded from .blender dir.
the path to the selected ui font gets stored in the U.fontdir userprefs.
fixed a fullscreen thingie for windows.
2003-05-12 14:23:03 +00:00
efa0b4ef43 - Destroy the glx context _before_ the X window.
Fixes long standing crash for several DRI drivers.
Thanks to Jacek Popławski for hunting this bug down and supplying the patch.
2003-05-12 08:57:55 +00:00
a6d4f5260b added some more include paths to CPPFLAGS... 2003-05-12 07:48:18 +00:00
96b474f058 added -I../../blenlib to CPPFLAGS 2003-05-12 07:41:05 +00:00
455bafbe3f added routine that checks for LOCALE/message directory. 2003-05-12 02:49:29 +00:00
5756d0e1bd modified userprefs layout.
modified linenumber display.

for Win32:
added display of framenumber in titlebar of animwindow.
added userpref that enables all codecs for rendering.
2003-05-11 23:28:32 +00:00