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
2022-07-08Linux: Move Mesa software OpenGL libraries to sub-directorySergey Sharybin
Allows to put libraries which are always needed by Blender into the lib/ folder and not worry about OpenGL libraries picked up from there. Currently no functional changes as we do not yet have dynamic libraries which we load at startup. It allows to use direct linking of oneAPI Cycles device (see D15397), also it is something which would need to happen to support USD/Hydra/TBB compiler as dynamic libraries in the future. Differential Revision: https://developer.blender.org/D15403
2021-10-20Thumbnails: refactor extraction to use one code-path for all platformsCampbell Barton
Thumbnail extraction now shares code between Linux/Windows, allowing thumbnails from Zstd compressed blend files to be extracted. The main logic is placed in blendthumb_extract.cc and is built as static library. For windows there is DLL which is registered during blender install and which then reads and generates thumbnails. For other platforms there is blender-thumbnailer executable file which takes blend file as an input and generates PNG file. As a result Python script blender-thumbnailer.py is no longer needed. The thumbnail extractor shares the same code-path as Blenders file reading, so there is no need to duplicate any file reading logic. This means reading compressed blend files is supported (broken since the recent move Zstd compression - D5799). This resolves T63736. Contributors: - @alausic original patch. - @LazyDodo windows fixes/support. - @campbellbarton general fixes/update. - @lukasstockner97 Zstd support. Reviewed By: sybren, mont29, LazyDodo, campbellbarton Ref D6408
2017-04-27Cleanup: spellingCampbell Barton
2016-07-25Call to python3 for stand-alone scriptsCampbell Barton
Needed since Debian & FreeBSD both move away from keeping a synlink to `python`.
2015-08-17Simplify thumbnail blend parserCampbell Barton
No need to convert the BHead code to an int, just compare the bytes.
2015-06-07Cleanup: pep8Campbell Barton
2014-02-28Code cleanup: style/warningsCampbell Barton
2014-02-19blender-thumbnailer.py: Fix GVFS support not working with Python 3IRIE Shinsuke
also update doc string.
2013-11-18Maintenance: Shebang lines fix for some python scriptsCampbell Barton
2013-10-29patch [#37229] Save process slot in blender-softwaregl scriptCampbell Barton
from Lawrence D'Oliveiro (ldo)
2011-11-15Workaround for half-transparent windows when running blender-softwareglSergey Sharybin
and compiz effects are enabled. Thanks to Nicholas Bishop for pointing in possible solution of this issue.
2011-10-25SVN maintenance.Guillermo S. Romero
2011-10-25- fix numpad comma replacement which was broken since unicode input was added.Campbell Barton
- add blender-softwaregl wrapper script for unix - quiet compiler warning.
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-21- remove release/bin/.blender/.bfont.ttf, we have ↵Campbell Barton
./release/datafiles/bfont.ttf already, and its not used anymore. - removed scons WITH_BF_FREETYPE
2011-10-21move fonts/ and locale/ dirs into release/datafiles, since blender wasn't ↵Campbell Barton
finding them in their current location and so to test international characters you had to 'make install'. updated scons/cmake/translation-scripts.
2011-10-03remove .Blanguages, its not used anymoreCampbell Barton
2011-09-29i18n: update font to solve squares in arabic glyphs recently reported in MLSergey Sharybin
2011-09-21Tweak for unifont: use droid with glyphs from default bfont.Sergey Sharybin
Would make interface look like it used to be before garlic merge until we're working on making font configurable.
2011-09-18i18n: update droid fontSergey Sharybin
2011-09-18i18n: replace gnu unifont with droid sans fontSergey Sharybin
- Static variables can be initialized with constants only. - Removed bunifont.ttf.c from datafiles -- it's not actually a data file. Unicode font loading stuff is not in blenkernel/font.c - Allocate as much memory for unzipped data as it's needed. Default read chunk is 512Kb. - Fixed regression (or just a typo) in setting utf locale. - Default locale set to en_US:en works fine now. - Commented put Nepali language in user preferences -- it's not supported by current droid font and imo it's better to have nice font for languages we actually have translation for rather than allowing to choose more languages in user preferences.
2011-07-25complete the language-select featureXiao Xiangquan
2011-06-15merge from trunk r37405Xiao Xiangquan
2011-02-09patch [#25972] blender-thumbnailer.py: GVFS supportCampbell Barton
from Shinsuke Irie (irie) with some minor edits. Shinsuke's description from the tracker: --- I have implemented GVFS framework support of blender-thumbnailer.py which allows some file managers like Nautilus and Thunar to show thumbnails in trash or network directories. If Python's gio module is available, the thumbnailer uses it to access to filesystems mounted via GVFS. This change shouldn't affect desktop environments other than GNOME and XFCE. A function gvfs_open() in this patch is defined to solve a stupid incompatibility between Python file object and GIO Seekable object. On Ubuntu 10.10, I confirmed thumbnails can be generated for file://, trash://, sftp://, and smb://.
2011-02-06fix [#25948] blender-thumbnailer.py does incorrect checking for the number ↵Campbell Barton
of arguments noticed by Shinsuke Irie (irie)
2011-02-04pep8 cleanupCampbell Barton
2011-01-21bugfix [#25742] blender-thumbnailer.py doesn't work with python 3.1Campbell Barton
2010-09-19remove redundant []'s for list comprehension's, py2.4+ supports this.Campbell Barton
2010-07-26move directories:Campbell Barton
dlltool --> build_files/make/dlltool bin --> release/bin Since dlltool is only used make + mingw and ./bin is misleading because it would seem the blender binary would be copied there, but its just used for home directory files. updated scons/cmake/make