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
path: root/intern
AgeCommit message (Collapse)Author
2010-08-25rename most scons build targets to match cmakeCampbell Barton
2010-08-24rename some cmake build targetsCampbell Barton
2010-08-20Fixing [#23370] problem when running game engineJoerg Mueller
2010-08-20Fix #23198: openmp building for OS X ppc gave errors about non-relocatableBrecht Van Lommel
expression here. Not sure why, perhaps compiler bug, but this simple change fixes it.
2010-08-18Update MSVC project filesBenoit Bolsee
2010-08-17Audaspace: This should fix all missing python includes now once for all...Joerg Mueller
2010-08-16SVN maintenance.Guillermo S. Romero
2010-08-16Audaspace: Further fixes.Joerg Mueller
2010-08-16Audaspace: Buildsystem update after Ton destroyed building with scons and ↵Joerg Mueller
cmake, also including a patch by freakabcd fixing some missing python include paths.
2010-08-16Audaspace: Fix for ppl with outdated ffmpeg.Joerg Mueller
2010-08-16Makefile fixes for Audaspace. This also replaces the not-usedTon Roosendaal
WITH_PYTHON with DISABLE_PYTHON
2010-08-16Audaspace: Trying to fix a reported compile bug about missing UINT64_C.Joerg Mueller
2010-08-16Audaspace: Fixing quaternion and relativeness of 3D sounds error.Joerg Mueller
2010-08-16Fix from patch tracker by saphires: [#23339] Remove const members in ↵Joerg Mueller
AUD_3Dmath.h
2010-08-16Audaspace:Joerg Mueller
* Fix for uncached exception whith invalid audio file. * Includes fix for windows.
2010-08-16Audaspace: Disabling FFTW building as this stuff is unused atm anyway.Joerg Mueller
2010-08-16svn merge -r 31314:31370 ↵soc-2010-nexyonJoerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-14Apply patch #23295 - Fix for SCons building on FreeBSDNathan Letwory
Patch submitted by Jashank Jeremy. This adds support for freebsd7, freebsd8 and freebsd9. Thanks!
2010-08-13Py API Docs:Joerg Mueller
* Moving the alternative parser * Checking for classmethods and staticmethods of builtin modules
2010-08-10Py API Docs:Joerg Mueller
* Improved audaspace docs * Added an epy parser to add epydoc documented modules to the sphinx docs
2010-08-06Py API Documentation:Joerg Mueller
* Fix some minor errors my script found in mathutils and blf. * Fixing optional parameters with default values in aud.
2010-08-05Audaspace Py API: Improving Docs (Crosslinks, etc).Joerg Mueller
2010-08-05svn merge -r 30954:31059 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-03Audaspace Py API: Updated some outdated docs.Joerg Mueller
2010-08-03build options to disable image formats WITH_CINEON, WITH_HDR.Campbell Barton
- updated cmake, make & scons. - renamed CMake build options WITH_TIFF -> WITH_IMAGE_TIFF, same for DDS, OPENJPEG etc.
2010-08-03Audaspace:Joerg Mueller
* Py API: Renamed Sound to Factory to match the C++ classes and make it possible to add Readers when necessary to the API. * Py API docs: Added the filter example. * Fixed a crash for sounds without stop callback.
2010-08-03Audaspace Py API: Getting rid of unnecessary forward declarations.Joerg Mueller
2010-08-03Audaspace:Joerg Mueller
* Added an error string for audaspace exceptions. * Fixed PyAPI exceptions. * Minor bugfixes. * Added a name parameter to the Jack device, so that one can define an own name via Python.
2010-08-03Audaspace Py API:Joerg Mueller
* Devices are now created with the constructor instead of class methods.
2010-08-02Audaspace:Joerg Mueller
* Added a stopCallback function that is called when the end of a sound is reached. * Fixed the scrubbing not working. * Minor SoundActuator cleanup.
2010-08-02svn merge -r 30913:30953 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-08-02Audaspace:Joerg Mueller
* Created awesome filter classes :) * Made all filter effects use the filter classes instead of having the same implementation everywhere. * Added a Python API for LTI IIR filters. * Fixed a warning in creator.c that was introduced when adding game autoplay.
2010-08-01OSX/Cocoa : fix the Cmd modifier stuck after cancelling the quit dialogDamien Plisson
2010-07-31Audaspace:Joerg Mueller
* Fixed some compiler warnings * Implemented device looping * Note: Scrubbing in the sequencer is broken atm
2010-07-31svn merge -r 30718:30912 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-07-31Audaspace: Refactored the complete 3D Device code giving a nicer API.Joerg Mueller
2010-07-28Audaspace Refactor:Joerg Mueller
* Removed whole Capabilities System * Fixed Py API error strings * Improved some Py API properties * Minor other changes
2010-07-28Audaspace: HUGE Refactor.Joerg Mueller
Some points of the refactor not sorted by importance: * Fixed immutability of readers and factories (there are exceptions...) * Fixed copy constructors and = operators * Removed messaging system * Removed reader types * Added const where possible * Using initalisers when possible * Avoided use of pointers when possible * Removed AUD_NEW and AUD_DELETE macros * Removed useless NULL pointer checks * Fixed exception catching * Fixed some yet unknown bugs * Lots of other stuff
2010-07-27Smoke:Daniel Genrich
- Fix typo in tooltip - Add timeframe independand timesteps
2010-07-27Smoke Patch + additions: a) Applying patch #22765 by Miika Hämäläinen ↵Daniel Genrich
(domain border collision settings, vorticity settings, time scale, non absolute density, smooth high res emitter, initial velocity multiplier, high res strength available to be set to 0), b) Additions by me: --Initial velocity is now per flow object, not per domain; --Using boundingbox as standard display mode for domains (was wire before); --When adding a flow object, an initial nice SmokeParticle system is added too with nice initial settings (life=1, no_render, unborn, etc) fitting smoke simulation; --Adaptive timesteps introduced to the smoke sim (depending on the magnitude of the velocity) because it was quite unstable when used for fire simulations, still needs to be tested and will also slow down some simulations.
2010-07-26bugfix [#23038] View rotation snap has left and right view names swapped ↵Campbell Barton
arround. also noticed some spelling errors.
2010-07-26Audaspace Py API:Joerg Mueller
* Renamed get_c_device() to device() * Made the threshold parameter of Sound.square() optional * Added a sample rate parameter for Sound.sine() * Example updates
2010-07-26Audaspace Py API:Joerg Mueller
* Renaming superpose and double to mix and join * Making most of the static methods of Sound normal ones * Minor documentation fixes
2010-07-26Removing unnecessary _ functions from device as the c_device is a device too ↵Joerg Mueller
and doesn't have it's own api.
2010-07-25svn merge -r 30566:30717 ↵Joerg Mueller
https://svn.blender.org/svnroot/bf-blender/trunk/blender
2010-07-25Audaspace Py API documentation fixes.Joerg Mueller
2010-07-25from Luca's recent commit noticed there are more typo's: lenght -> lengthCampbell Barton
2010-07-23Audaspace Python API: Better docs.Joerg Mueller
2010-07-23Attempt to fix compile for GCC 4.4.Brecht Van Lommel
2010-07-23Changed the fix for string literal warnings to dynamic casts, patch for one ↵Joerg Mueller
function sent to python devs the other won't be patched according to the devs in IRC.