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
2011-02-22missing deps for pacmanCampbell Barton
2011-02-22Type in snapshort ;)Ton Roosendaal
2011-02-22cmake was using dna source list with the variable out of scope, possibly ↵Campbell Barton
causing dependency problems.
2011-02-22part of a patch from Dan Eicher with some edits.Campbell Barton
- clean svn string: 35042:35051M -> 35051 - debian and pacman build with threads by default.
2011-02-21patch [#26146] debian/rules: Avoid unnecessary downloadingCampbell Barton
--- from the tracker It's annoying that build_debian.sh downloads the source tree to create tarball every time we build a deb package. fix_debian_rules_avoid_downloading.patch modifies debian/rules so that the tarball will be created from local repository if possible.
2011-02-21better macro for getting the blender version from BKE_blender.h, also re-run ↵Campbell Barton
CMake if BKE_blender.h changes.
2011-02-21fix for cmake with last commit.Campbell Barton
2011-02-21Move blender version info into BKE_blender.h so we only have the info in one ↵Campbell Barton
place and so package building scripts can extract it in a more usable way. this also means we can have a version string like '2.56a-beta' without using buildinfo. release/VERSION was only used by scons, NSIS installer. Possibly helps to fix bug [#26062] too.
2011-02-21fix [#26152] Blender File for Image too SmallCampbell Barton
disallow 0% rendersize. also mark new cmake vars as advanced: RPMBUILD, X11_XF86keysym_INCLUDE_PATH
2011-02-21Experimental option to build blender as a python module, rather then blender ↵Campbell Barton
embedding python. CMake build option WITH_PYTHON_MODULE, will build ./bin/bpy.so This allows 'bpy' to be imported from python or other applications/IDE's which embed python, eg: python -c "import bpy ; bpy.ops.render.render(write_still=True)" This runs in background mode and has similar restrictions to running a script: blender --background --python test.py TODO: - install to site-packages with blender scripts - add support for imp.reload()
2011-02-18Check the os.environ at the start of the build process.Nathan Letwory
Print any variable that contains a value with non-ascii characters, then abort build.
2011-02-17patch [#26063] Fix deb package versioning (Patch for #26062)Campbell Barton
from Shinsuke Irie (irie), also updated pacman
2011-02-17CMake: remove workaround for cmake 2.8.3 problem testing ↵Campbell Barton
-Werror=strict-prototypes flag (now 2.8.4 is out). This is harmless, CMake 2.8.3 just wont build with -Werror=strict-prototypes which is nice for picky devs.
2011-02-17pep8 cleanup and remove unused vars/importsCampbell Barton
2011-02-16bugfix [#26094] Going to Bone Roll menu brings up python errorCampbell Barton
also correct for pep8 warnings.
2011-02-15patch from IRIE Shinsuke, use systems openjpeg on *nix.Campbell Barton
2011-02-15CPack packaging support from Dan Eicher, tested to build redhat RPM's, a Mac ↵Campbell Barton
bundle also defined.
2011-02-14py rna api: turn class.is_register into a class property rather then a class ↵Campbell Barton
method. eg: if MySybclass.is_registered: ...
2011-02-14Revert incorrect fix for 26062 made in svn rev34828.Sergey Sharybin
2011-02-13Fix #26062: build_debian.sh gives unappropriate deb versionSergey Sharybin
Added subverison number to debian package version. Quick tests run ok, but haven't checked if deb version comparation also goes fine.
2011-02-11SVN maintenance.Guillermo S. Romero
2011-02-11patch [#26030] Debian spec fix (Patch for #26028)Campbell Barton
from Shinsuke Irie (irie)
2011-02-11update pacman spec for newer python and match naming convention to debian spec.Campbell Barton
also pre-compile python modiles.
2011-02-10script to build debian packages directly from svn, using blender version and ↵Campbell Barton
svn rev for package name.
2011-02-10debian package spec [#26007] Debian specCampbell Barton
by Dan Eicher (dna)
2011-02-04pep8 cleanupCampbell Barton
2011-01-30remove nan-makefilesCampbell Barton
2011-01-27Commit to cope with API changes in OpenCOLLADA (latest for Windows right now ↵Nathan Letwory
r827).
2011-01-27[#25815] Patch gcc 4.6Campbell Barton
with minor edits, made sure it works in CMake too.
2011-01-26cmake attempted fix before didnt work (I cant test on OSX), this should fix.Campbell Barton
2011-01-26missed this when updating cmake filesCampbell Barton
2011-01-25use cmake defined names for jpeg, png, zlib and python libs, building on ↵Campbell Barton
*nix with non-standard libjpeg/png/zlib locations was broken. in the case of python this makes it easier to move to find_package(PythonLibs) when 3.x is supported.
2011-01-25cmake maintenance, was missing 2 headers and made some minor improvements to ↵Campbell Barton
cmake_consistency_check.py. also converted GHOST_SystemWin32.cpp to utf8.
2011-01-21correction to own cmake error checking script.Campbell Barton
2011-01-05Enable sndfile by default on win64Nathan Letwory
2010-12-23rename blenderlib to blender_add_libCampbell Barton
2010-12-23Compact -I paths in makefiles for more readble files/output.Guillermo S. Romero
Also some white space cleaning and removal of redundant parameter.
2010-12-21bugfix [#24469] Cannot add keyframes on custom properties in IDPropertyGroupsCampbell Barton
2010-12-21better make_quiet.sh filter with threaded builds.Campbell Barton
2010-12-21fix for cmake flag detection, was not caching the resulting variable so the ↵Campbell Barton
test ran each time. also cache SSE, SSE2 checks.
2010-12-20simple make wrapper to give quiet output. (more like nan-makefiles)Campbell Barton
2010-12-17script to generate qtcreator project files, advantage is they include all ↵Campbell Barton
source which is nicer for refactoring.
2010-12-16fix for error in testing C/C++ flagsCampbell Barton
2010-12-16last commit to fix warnings didnt set them at all, not it works as it should.Campbell Barton
also made cmakes output a lot quieter, messages can be uncommented for debugging or added back if other devs need this for some reason.
2010-12-16CMake now tests warnings are supported, GCC 4.0 wasn't working because of ↵Campbell Barton
unsupported warnings. this can work for other compilers too, currently intel and gcc use this.
2010-12-15bugfix [#25230] Quick extrude Ctrl-LMB : wrong behaviour of 'RotateSource' ↵Campbell Barton
option. Problem is is with operator redo which click-extrude exposed. Check if redo operator can run, otherwise lock the UI and add a label that the operator doesn't support redo. This is clunky but IMHO better then failing silently and leaving the user confused. - Merged redo functions into ED_undo_operator_repeat(), code was duplicated in a few places. - added WM_operator_repeat_check to check if WM_operator_repeat() can run, avoids an undo call when redo work. Unrelated changes - GHOST_SystemWin32.cpp set to utf8 encoding. - cmake_consistency_check.py now checks source files are utf8.
2010-12-14update for changes in cmake files.Campbell Barton
2010-12-08use lowercase for cmake builtin names and macros, remove contents in else() ↵Campbell Barton
and endif() which is no longer needed.
2010-12-07Remove redundant VC_REDIST code, since it's not used anymore.Nathan Letwory
2010-12-06CMake: use a global list to store libraries built rather then ↵Campbell Barton
cmake_blender_libs.txt file.