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
2017-10-23Fix OpenGL extension report in system info operator.Antony Riakiotakis
2017-06-07Report OpenSubdiv version Blender is compiled againstSergey Sharybin
2016-10-23System info: make it more resiliant to errors.Bastien Montagne
Using context manager for output file itself, and whole try/except block to at least catch and print error in file. Also some minor tweaks to previous 'list add-ons' commit.
2016-10-23System info: also report enabled add-ons.Bastien Montagne
Based on idea & patch by @lijenstina over IRC (iirc :/ ).
2016-08-06Basic Alembic supportKévin Dietrich
All in all, this patch adds an Alembic importer, an Alembic exporter, and a new CacheFile data block which, for now, wraps around an Alembic archive. This data block is made available through a new modifier ("Mesh Sequence Cache") as well as a new constraint ("Transform Cache") to somewhat properly support respectively geometric and transformation data streaming from alembic caches. A more in-depth documentation is to be found on the wiki, as well as a guide to compile alembic: https://wiki.blender.org/index.php/ User:Kevindietrich/AlembicBasicIo. Many thanks to everyone involved in this little project, and huge shout out to "cgstrive" for the thorough testings with Maya, 3ds Max, Houdini and Realflow as well as @fjuhec, @jensverwiebe and @jasperge for the custom builds and compile fixes. Reviewers: sergey, campbellbarton, mont29 Reviewed By: sergey, campbellbarton, mont29 Differential Revision: https://developer.blender.org/D2060
2016-08-01Cleanup: unused vars, imports, pep8Campbell Barton
2016-07-30Cleanup: pep8Campbell Barton
2016-01-31Cleanup: pep8Campbell Barton
2016-01-23Implementation of OpenVDB as a possible cache format for smokeKévin Dietrich
simulations. This commits implements OpenVDB as an extra cache format in the Point Cache system for smoke simulations. Compilation with the library is turned off by default for now, and shall be enabled when the library is present. A documentation of its doings is available here: http:// wiki.blender.org/index.php/User:Kevindietrich/OpenVDBSmokeExport. A guide to compile OpenVDB can be found here (Linux): http:// wiki.blender.org/index.php?title=Dev:Doc/Building_Blender/Linux/ Dependencies_From_Source#OpenVDB Reviewers: sergey, lukastoenne, brecht, campbellbarton Reviewed By: brecht, campbellbarton Subscribers: galenb, Blendify, robocyte, Lapineige, bliblubli, jtheninja, lukasstockner97, dingto, brecht Differential Revision: https://developer.blender.org/D1721
2016-01-06Save sys-info to file instead of a text blockCampbell Barton
The main reason for this change is this file is typically used when making bug reports, its best if users attach this file to reports directly.
2015-12-13OpenGL: system info tweaksMike Erwin
- show extensions one per line in order for easier human scanning - show DrawElements vertex & index limits - assume GL version >= 2 for GLSL limit queries
2015-10-30Include Python binary in system-info.txtCampbell Barton
2015-10-20Minor edits to sytem-info scriptCampbell Barton
- list script paths on their own line. - use title util function.
2015-09-18Minor edits to sys-infoCampbell Barton
- remove byte b'' - remove always false check for missing buildinfo. - use textwrap module
2015-08-18system-info.txt was quoting ffmpeg lib namesCampbell Barton
2015-02-18Include SDL information in system info text.Sybren A. Stüvel
Adds bpy.app.sdl to expose SDL version information. When SDL is not available on a Linux system, certain Blender features are silently disabled (like joystick support in the BGE). This change is the first step towards making it more obvious why something isn't working. SDL information is exposed to Python via bpy.app.sdl, in the same way as OCIO and OIIO information is exposed. Generated system-info.txt contains SDL loading method (linked or dynamically loaded by Blender) and SDL version number. Reviewed by: sergey, campbellbarton Differential Revision: https://developer.blender.org/D1112
2015-01-29cleanup: pep8Campbell Barton
also remove empty class parenthesis
2015-01-06Cycles: Repot CPU and CUDA capabilities to system info operatorSergey Sharybin
For CPU it gives available instructions set (SSE, AVX and so). For GPU CUDA it reports most of the attribute values returned by cuDeviceGetAttribute(). Ideally we need to only use set of those which are driver-specific (so we don't clutter system info with values which we can get from GPU specifications and be sure they stay the same because driver can't affect on them).
2014-08-28Add debug information for maximum opengl limits in system infoAntony Riakiotakis
generation.
2014-02-13Code cleanup: styleCampbell Barton
2014-01-04Text API: make text.current_line_index writableCampbell Barton
use for setting the text position when writing system info.
2014-01-04Revert "Quick fix for system info text always being scrolled out of view ↵Campbell Barton
when loaded for the first time" This can be done without extending the API, using RNA access instead.
2014-01-04Quick fix for system info text always being scrolled out of view when loaded ↵Joshua Leung
for the first time Added an API method to Text datablocks for moving the cursor to a specific line in the file. This makes it possible to reset the cursor position at the end of the sysinfo operator.
2013-12-08Code cleanup: UI cleanup for cycles UI code and fix typo in system info.Thomas Dinges
2013-12-08Extend system-info with information about OIIO, OCIO and OSLSergey Sharybin
Summary: Version of those libraries might be useful to know. - OIIO and OCIO is exposed via bpy.app.oiio and bpy.app.ocio. There're "supported", "version" and "version_string" defined in those modules. - OSL is available as _cycles.osl_version and _cycles.osl_version_string. Reviewers: campbellbarton Reviewed By: campbellbarton CC: dingto Differential Revision: http://developer.blender.org/D79
2013-11-15Further tweaks to buildinfoSergey Sharybin
Summary: Old idea with changes since previous release tag didn't work good enough. In most of the cases tag was done in a branch hence not actually reachable from the master branch. Now change since release is gone, and date of the latest commit is used instead. The date is displayed in format YYYY-MM-DD HH:mm in the splash. New bpy.app fields: - build_commit_timestamp is an unix timestamp of the commit blender was build from. - build_commit_date is a date of that commit. - build_commit_time is a time of that commit. Reviewers: campbellbarton Differential Revision: http://developer.blender.org/D5
2013-11-04Made buildinfo aware of builds from GITSergey Sharybin
- Use commit number since last annotated tag as a revision number replacement. It'll eb followed by 'M' symbol if there're local modification in the source tree. - Commit short SHA1 is included. Helps getting information about commit used to build blender with much faster. - If build is not done from master branch, this also will be noticed in the splash screen. This commit also replaces revision stored in the files with git-specific fields (change and hash). This is kind of breaks compatibility, meaning files which were saved before this change wouldn't display any information about which revision they were saved with. When we'll finally switch to git, we'll see proper hash and change number since previous release in the files, for until then svn version will be used as a change number and hash will be empty. Not a huge deal, since this field was only used by developers to help torubleshooting things and isn't needed for blender itself. Some additional tweaks are probably needed :)
2012-07-29fix for own regression with handling of script paths, however this didnt ↵Campbell Barton
work quite right before either. Handle these 2 kinds of script paths * user script path: ~/.blender/scripts OR $BLENDER_USER_SCRIPTS * pref script path: always bpy.context.user_preferences.filepaths.script_directory now both are returned by bpy.utils.script_paths()
2012-06-20style cleanupCampbell Barton
2012-03-04fix for issue raise by patch [#30154] non utf8 buildinfo, fails to import ↵Campbell Barton
'bpy' module. we cant ensure buildinfo to have utf8 encoding so access it as bytes via python - a different workaround then this patch made. also use C style string formatting for sys_info.py
2012-01-01pep8 editsCampbell Barton
2011-12-28Add FFmpeg libraries versions to system-info.txtSergey Sharybin
2011-03-22allow system info operator in background mode.Campbell Barton
2011-02-17pep8 cleanup and remove unused vars/importsCampbell Barton
2011-01-01pep8 cleanupCampbell Barton
2010-10-19* Enable compile and link flags to build info also on Windows and in SCons.Nathan Letwory
* Added build_system SCons or CMake * Write the new build info also to system-info.txt
2010-10-16Add System Info function to the Help menu.Nathan Letwory
Users can use this to quickly get info about their system for bug reports.