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
2021-04-12project_info: use type hintsCampbell Barton
'mypy --strict' passes without errors.
2021-02-12Cleanup: use the assignment operator with list-comprehensionCampbell Barton
2019-02-05Cleanup: remove contributors for Python filesCampbell Barton
Following removal from C source code. See: 8c68ed6df16d8893
2018-01-26project_info: replace os.system w/ subprocess.check_callCampbell Barton
2017-08-23Tests: fix incorrect check for hidden dirCampbell Barton
Copy-pasted mistake in tests and tools.
2017-05-27Remove MinGW supportAaron Carlisle
The Issue ======= For a long time now MinGW has been unsupported and unmaintained and at this point, it looks like something that we should just leave behind and move on. Why Remove ========== One of the big motivations for MinGW back in the day is that it was free compared to MSVC which was licensed based. However, now that this is no longer true we have basically stopped updating the need CMake files. Along with the CMake files, there are several patches to the extern libs needed to make this work. For example, see: https://developer.blender.org/diffusion/B/browse/master/extern/carve/patches/mingw_w64.patch If we wanted to keep MinGW then we would need to make more custom patches to the external libs and this is not something our platform maintainers are willing to do. For example, here is the patches needed to build python: https://github.com/Alexpux/MINGW-packages/tree/master/mingw-w64-python3 Fixes T51301 Differential Revision: https://developer.blender.org/D2648
2016-08-01Cleanup: unused vars, imports, pep8Campbell Barton
2016-07-30Cleanup: pep8Campbell Barton
2015-12-27Fix for error w/ QtCreator project builderCampbell Barton
cmake_qtcreator_project.py now takes a '--build-dir' argument. Since introduction of argparse, accessing last argv from project_info is no longer working. Now require a call to project_info.init before use.
2015-06-18Update netbeans project file generatorCampbell Barton
2014-05-11CMake: use project name when generating project filesCampbell Barton
2013-05-20code cleanup: rename bmesh operator files to be more consistentCampbell Barton
2013-01-24fix for missing initialization of vert data in ccgDM_copyFinalVertArrayCampbell Barton
2013-01-24patch [#33969] fix for [#33968] Blenders Custom Project File Generator for ↵Campbell Barton
QtCreator fails from Philipp Oeser (lichtwerk)
2013-01-16code cleanup:Campbell Barton
- cycles ui used 'cscene' for scene.cycles and scene.cycles_curves - style cleanup
2013-01-07add error check for qtcreator&netbeans project file generators to quit early ↵Campbell Barton
if cmake fails.
2012-12-31add ".hh" as an extension for source scripts.Campbell Barton
2012-11-26switch verious references from py3.2 -> 3.3 or just 3.Campbell Barton
2012-10-17style cleanup: make OSL follow our C style convention. ↵Campbell Barton
http://wiki.blender.org/index.php/Dev:Doc/CodeStyle
2012-10-15another change needed for qtcreator project generator to work with ninja.Campbell Barton
2012-05-02replace python3 command with python3.2, python3 isnt available on ubuntu.Campbell Barton
2012-04-15qtcreator/netbeans generators: fix for error getting project info when svn ↵Campbell Barton
isnt found (common on windows)
2012-01-18cleanup for redefined varsCampbell Barton
2011-11-19hide overly picky warnings from 'pylint' for pep8 script, indentation edits.Campbell Barton
2011-11-19add python3 checks to avoid confusion from errors with python2.Campbell Barton
2011-11-17pass encoding to uses of decode() incase the default isnt utf-8. ignore ↵Campbell Barton
decode errors in some cases. This should fix an error with generated qtcreator projects. also replace decoded bytes for unicode escape sequences in the VIEW3D_MT_edit_text_chars menu.
2011-11-16support for creating project files in utf8 paths (was defaulting to ascii ↵Campbell Barton
and throwing errors)
2011-11-04correct some warnings, also sensor_x was being paassed to ↵Campbell Barton
object_camera_matrix(...) for x and y args, looks like an accident
2011-11-01name qtcreator projects based on branch names (if svn is found and its a ↵Campbell Barton
branch), was too confusing with multiple IDE's open calling all projects 'Blender'.
2011-10-25update is_c() utility function to include '.cc' and '.inl' files.Campbell Barton
2011-10-24Some small fixes and changes:Sergey Sharybin
- Add *.cc files to qtcreator project as well as .cpp and .cxx (would be needed for correct generating projects with libmv library). - Added negate_v2 and negate_v2_v2 functions. They'll be needed for camera tracking project. - Fixed issue with generating proxies from 32bit images. (generated jpg-s opened fine in blender, but were dark in osx viewer). - Marked unused arg in indexer as UNUSED.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-05-26correct spelling error and some pep8 changes.Campbell Barton
2011-05-16SVN maintenance.Guillermo S. Romero
2011-05-16made generic module for generating project files from cmake,Campbell Barton
added netbeans project file generator.