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
2011-10-23fix some typo'sCampbell Barton
2011-10-22Fix for an unhandled exception. Campbell: please include in 2.60a.Joerg Mueller
2011-10-22utf8 OSX - cleanupDalai Felinto
I still think utf8_buf can be 5 (4 bytes + '\0'), but even 6 may not be enough to what is coming next (NFC - precomposedStringWithCanonicalMapping) incorporating ascii as a subset of utf8. I don't think we need to re-encode it. U+0000 ~ U+00FF - latin1 set
2011-10-22Fix for text object on windows.Alexander Kuznetsov
No utf8 when keyup
2011-10-22header cleanup and typo'sCampbell Barton
2011-10-21utf8 OSX - disabling utf8 at KeyUp, otherwise TextObject doesn't work.Dalai Felinto
This bug is also present in Windows, so I believe the real bug is in Linux (and in the text object input). Also Cmd+C and Cmd+v doesn't work for utf8 yet.
2011-10-21UTF8 input support for Windows.Alexander Kuznetsov
ToDo: * add support for dead keys * other input methods (for hieroglyphs)
2011-10-21disabling utf8 for OSX. It's not working 100% and it's breaking other thingsDalai Felinto
2011-10-21cleanup scons build flags, many duplicates because because of confusion ↵Campbell Barton
between CFLAGS/CPPFLAGS/CCFLAGS/CXXFLAGS, devs would set multiple to be on the safe side. - defines go in CPPFLAGS - C & C++ flags go in CCFLAGS - CFLAGS / CXXFLAGS are C OR C++ only. also commented intended ghost unicode/ascii usage.
2011-10-20OSX: dalai's patch for utf8 support, todo: uppercase chars not working yetJens Verwiebe
2011-10-20Fix for 7.1 audio export being misscalculated...Joerg Mueller
2011-10-20OSX fix for recent utf8 commitDalai Felinto
2011-10-20initial support for unicode keyboard input for ghost & blenders WM.Campbell Barton
- currently X11 only, depends on Xinput (but should not break other os's). - ghost stores utf8 buffer, copies to wmEvent's - UI text input is currently the only area that uses this - not console or text editor. - no rna access yet.
2011-10-17fix spelling mistakes in comments (and in some python error messages), ↵Campbell Barton
nothing to effect translations.
2011-10-14Fix for [#28916] 2.6 RC2 - Bake Sound to FCurve CrashJoerg Mueller
2011-10-14Fixing [#28907] Frozen playback.Joerg Mueller
Also fixing two more crashes when audio files don't exist/cannot be read and apply a changed file path of a sound, reported by Jens Verwiebe in IRC.
2011-10-10Sequencer audio waveform drawing fix, now assured to be within the strip bounds.Joerg Mueller
2011-10-07spaces -> tabs (only whitespace changes)Campbell Barton
2011-10-06set mikktspace functions as static which are not used externally.Campbell Barton
2011-10-06dont define the ghost PREFIX for scons, since this means our portable ↵Campbell Barton
downloadable binary would find the system blender files (if installed). this should stay disabled until scons supports system/portable installs as with cmake.
2011-10-05OSX: Correct copy/paste error and exclude endianess switch from darwinJens Verwiebe
2011-10-02Missed some stoff when removing libsamplerate.Joerg Mueller
2011-10-02Typo fix. nexYon commit caused bit-loss in the word incs.Nathan Letwory
2011-10-02* Removing libsamplerate from build systemsJoerg Mueller
* Enabling OpenAL for scons win64-vc in default config; Nathan or Sergey: please update the build bot to build with OpenAL!
2011-10-01Cgange compile cindition for gcc-4.6-objC++ workaroundJens Verwiebe
2011-09-29Fix #28416: setting fluid simulation start time to anything other than zeroBrecht Van Lommel
gave wrong results. Note how in this code it already incremented to the start time and then incorrectly added it again. Patch by Chris Foster, thanks!
2011-09-28Now in proper english, heheJens Verwiebe
2011-09-28Using non ASCII-conform char in comment broke compileJens Verwiebe
2011-09-28OSX: Give clear commenting and more up-to-date defaultsJens Verwiebe
2011-09-28OSX: always compile GHOST and Quicktime with Apple-gcc-4.2, simplifies for ↵Jens Verwiebe
non-apple compilers
2011-09-28Bugfix for wrong playback reported by Sergey Sharybin in IRC.Joerg Mueller
2011-09-27OSX: introduced a workaround for compiling with non-apple gcc-4.6.1, ghost ↵Jens Verwiebe
must be compiled with apple-gcc nevertheless due objc incompatibilities
2011-09-27comment warnings as errors for MSVC - it too easily made small problems like ↵Campbell Barton
unused vars into errors which gets annoying for non developers. with GCC we have *some* warnings as errors which works out better.
2011-09-27py apiCampbell Barton
- use Py_ssize_t when dealing with python sequence sizes - dont call PySequence_Size(py_b) in a loop (its slow). - use faster sequence/float parsing in aud.Factory.filter
2011-09-26Abort on guarded memory manager errors if WITH_ASSERT_ABORT is setSergey Sharybin
2011-09-26Reverting change to solver_relax.h from commit 40539, caused this nasty bug ↵Daniel Salazar
http://projects.blender.org/tracker/?func=detail&atid=498&aid=28748&group_id=9 I'd say better be careful with code so complex as the fluid sim!
2011-09-25Fix some MSVC 2010 warnings (including one apparent bug in ↵Andrew Wiggin
intern/elbeem/intern/solver_relax.h)
2011-09-25whitespace cleanupCampbell Barton
2011-09-25give a more useful error when building with an old ffmpeg.Campbell Barton
2011-09-23Fix fluid openMP not baking with some threadcountsJens Verwiebe
2011-09-21remove support for irixCampbell Barton
2011-09-20pep8 update & some minor cmake edits.Campbell Barton
2011-09-20tag & comment unused vars with /* UNUSED */Campbell Barton
2011-09-19cleanup endian handlingCampbell Barton
- define __BIG_ENDIAN__ or __LITTLE_ENDIAN__ with cmake & scons. - ENDIAN_ORDER is now a define rather than a global short. - replace checks like this with single ifdef: #if defined(__sgi) || defined (__sparc) || defined (__sparc__) || defined (__PPC__) || defined (__ppc__) || defined (__hppa__) || defined (__BIG_ENDIAN__) - remove BKE_endian.h which isn't used
2011-09-18fix for crash loading a file saved with fluidsim when blenders compiled with ↵Campbell Barton
it disabled. also remove unneed class prefix on function name for itasc.
2011-09-12quiet -Wundef warnings for cmake/gcc/elbeemCampbell Barton
2011-09-11Audio:Joerg Mueller
* Fix for high quality upsampling which was wrong. * Fix for doppler effects which were calculated wrong for scenes. * Improved animation evaluation at the beginning and end of a scene.
2011-09-06fix link issues with MinGW - a substitute declaration(correctByteOrder) for ↵Antony Riakiotakis
itoln that was not present in MinGW was being used. Duplicated the declaration from <winsock2.h>(tried including but gave some errors) and added the appropriate link library, wsock32, according to MinGW documentation.
2011-09-06replace define '#if FFTW3==1' --> '#ifdef WITH_FFTW3'Campbell Barton
2011-09-06fix some complier warnings and add -Wundef to CMake's default GCC warnings.Campbell Barton