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-10-14Fix MSVC build ( .0f/.0f fires a compiler error )Andrew Wiggin
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-12changes to relative path optionCampbell Barton
- initialize the relative_path option in ED_fileselect_get_params(), saves initializing within every operators own init functions, some even trying to initialize a non existing property. - don't set the operator default from the user preferece, operator property defaults should be static else python scripts for eg can get different defaults depending on user settings, this also wont get updated when user-defaults are edited so generally confusing & not good practice.
2011-10-10Now append/link will start at current blend file directory, if available ↵Bastien Montagne
(lastest used lib keeps priority).
2011-10-03Change struct alignment for structs which are intended to be aligned but aren't.Campbell Barton
remove uiIconImage too since its unused.
2011-10-03fix [#28784] CRASHER on load with load_post handlerCampbell Barton
also fix pacman package build spec.
2011-10-01reverting part of rev40594.Sergey Sharybin
Pardoon, looks like i've forgot to revert current work before commiting actual patch i wanted to send to the svn.
2011-10-01* Updating readme.html and link to release logs for 2.60, now that we ↵Thomas Dinges
approach the RC state.
2011-09-30fix for crash generating messages.txt, I wasn't getting this crash because I ↵Campbell Barton
had 'WITH_PYTHON_SAFETY' enabled which was using different iterators (which dont crash), now there on by default. made headless and no-python configurations work again and added --factory-startup to doc building command.
2011-09-29Fix #28769 & #28768: problem with duplicated keymap items after fix yesterday.Brecht Van Lommel
2011-09-28Fix autosave trying to write to / if no userpref temp directory was set,Brecht Van Lommel
like other code in blender it should write to the one actually verified to exist. Also fixes wrong temp directory when loading user preferences with no temp directory from a state where one was specified.
2011-09-28Fix #28726: maya key configuration lost after file > new.Brecht Van Lommel
2011-09-28fix for crash with demo mode addon, modal operator loading a blend file ↵Campbell Barton
would free all window data which was then accessed, causing a crash.
2011-09-28whitespace edits, make formatting for functions consustent at least within ↵Campbell Barton
the file.
2011-09-27navmesh: convert object_navmesh.cpp to plain c.Sergey Sharybin
2011-09-26change define INTERNATIONAL --> WITH_INTERNATIONALCampbell Barton
also rename backface_culling --> use_backface_culling (which is used elsewhere in rna)
2011-09-22remove redundant code & use GL_LINE_STRIP for object spiral drawing.Campbell Barton
2011-09-22Fix #28489: Wacom Intuos 4 tablet doesn't work with outlinerSergey Sharybin
Stylus can produce slight movements when it touches tablet, so CLICK event wasn't triggering. Do not store INBETWEEN_MOUSE as previous event to make CLICK events triggered correct. Thanks to Brecht to pointing on short way to fix this problem.
2011-09-21check that descriptions dont end with a '.', for non release builds.Campbell Barton
this is annoying for translators so rather then correct along the way which gives merge conflicts for branches - print a complaint message.
2011-09-20- translation scripts now run with py3.xCampbell Barton
- added convenience make target 'make translations' - some MEM_malloc strings were not unique enough, expanded them.
2011-09-20- Fix for compiling without international supportSergey Sharybin
- Enable international support for win64 msvc by default
2011-09-20Improved Internationalization and LocalizationSergey Sharybin
============================================== Commiting GSoC project by Xiangquan Xiao trunk. Applied as separated patch, because svn merge produces to much false conflicts and worked really slow. Details for usage would be published on code.blender.org soon. Thanks to Xiao for implementation of project, Campbell to code review, Dalai and Gez for pointing to nice font and everybody else who took part in improving i18n support.
2011-09-20fix [#28672] Blender segfault after exiting a game that was opened withCampbell Barton
autoplay on (Blender, not blenderplayer) blender now stops the sound system and free's its self on Pythons sys.exit().
2011-09-20Merging r40366 through r40392 from trunk into soc-2011-garlicsoc-2011-garlicSergey Sharybin
2011-09-20i18n: some fixes for windows, scons and game engineSergey Sharybin
2011-09-20tag & comment unused vars with /* UNUSED */Campbell Barton
2011-09-20i18n: code clean-upSergey Sharybin
- Move all translation-related declarations to BLF_translation.h - Reverted some changes to match trunk svn rev40365
2011-09-19i18n: code cleanup and fixing unneeded translation (when partial translation ↵Sergey Sharybin
is used only)
2011-09-19svn merge -r40222:40344 ^/trunk/blenderSergey Sharybin
2011-09-18Fix for [#28672] Blender segfault after exiting a game that was opened with ↵Joerg Mueller
autoplay on (Blender, not blenderplayer) Autoplay misses uninitialisation, I'm just fixing the reported crash, it still misses all other frees, but as the program exits, we don't care?
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-09-17image button was hard coded to draw the splash screen which it loaded from ↵Campbell Barton
PNG data on every draw. now pass the ImBuf when callign the image button so we could have different images in buttons later on.
2011-09-15Fixing issues with i18n stuff:Sergey Sharybin
- Make gettext stuff draw-time. so switching between languages can happens without restart now. - Added option to translate visible interface (menus, buttons, labels) and tooltips. Now it's possible to have english UI and localized tooltips. - Clean-up sources, do not use gettext stuff for things which can be collected with RNA. - Fix issues with windows 64bit and ru_RU locale on my desktop (it was codepage issue). - Added operator "Get Messages" which generates new text block with with all strings collected from RNA. - Changed script for updating blender.pot so now it appends messages collected from rna to automatically gathered messages. To update .pot you have to re-generate messages.txt using "Get Messages" operator and then run update_pot script. - Clean up old translation stuff which wasn't used and most probably wouldn't be used. - Return back "International Fonts" option, so if it's disabled, no gettext lookups happens on draw. - Merged read_homefile function back. No need in splitting it. TODO: - Custom fonts and font size. Current font isn't nice at least for russian locale, it's difficult to read it. - Put references to messages.txt so gettext can merge translation when name/description of some property changes.
2011-09-15svn merge -r39834:40222 https://svn.blender.org/svnroot/bf-blender/trunk/blenderSergey Sharybin
2011-09-11replace magic numbers for flags for uiSetRoundBox();Campbell Barton
2011-09-08Fix #28310: import of key configuration with modal keymap not working.Brecht Van Lommel
2011-09-07Fix #28541: crash with operator reports in some cases, caused by my recent fixBrecht Van Lommel
for missing reports, thanks to Sergey for tracking this down.
2011-09-06Add parser error handler.Nathan Letwory
OpenCOLLADA is a validating parser, so is pretty strict about document form. The added error handler will print out any errors the parser finds. A pop-up will be shown too, advising the user to check the console for the error log.
2011-09-05Fix #28404: certain keyboard shortcuts not shown in menus, e.g. move operatorsBrecht Van Lommel
in graph editor > channel menu. Problem was these did not inherit operator execution context correctly. Fix found by Sergey, also needed to fix logic operators which were not working when invoked instead of executed.
2011-09-05Fix #28504: lib linking errors were not shown when opening a file fromBrecht Van Lommel
the splash screen.
2011-09-02tweak to WM_operatortype_find to perform better when called with empty ↵Campbell Barton
strings (as the keymap editor does a lot)
2011-09-02Credits generator which cross references with the patch tracker to credit ↵Campbell Barton
the original authors. the script has a unix-name <> real-name mapping which is not totally complete since I couldn't find everyones real names. In this case the commit name is credited. Also added a link to the credits page in the splash.
2011-09-01merge with trunk r39834Xiao Xiangquan
2011-08-28== Sequencer ==Peter Schlaile
This patch adds: * support for proxy building again (missing feature from Blender 2.49) additionally to the way, Blender 2.49 worked, you can select several strips at once and make Blender build proxies in the background (using the job system) Also a new thing: movie proxies are now build into AVI files, and the proxy system is moved into ImBuf-library, so that other parts of blender can also benefit from it. * Timecode support: to fix seeking issues with files, that have a) varying frame rates b) very large GOP lengths c) are broken inbetween d) use different time code tracks the proxy builder can now also build timecode indices, which are used (optionally) for seeking. For the first time, it is possible, to do frame exact seeking on all file types. * Support for different video-streams in one video file (can be selected in sequencer, other parts of blender can also use it, but UI has to be added accordingly) * IMPORTANT: this patch *requires* ffmpeg 0.7 or newer, since older versions don't support the pkt_pts field, that is essential for building timecode indices. Windows and Mac libs are already updated, Linux-users have to build their own ffmpeg verions until distros keep up.
2011-08-28- use static vars and functions where possible.Campbell Barton
- use NULL rather than 0 when used as pointers.
2011-08-25sanity checks on operator exec/modal/invoke return values.Campbell Barton
2011-08-23Fix for [#28339] Rev:39618 The revision part doesn't suffice. Thomas Dinges
NAN_BUILDINFO > WITH_BUILDINFO change from rev 39618 was missing in those files.
2011-08-22rename NAN_BUILDINFO --> WITH_BUILDINFOCampbell Barton
2011-08-21Fix #28154: linux3-config.py doesn't existSergey Sharybin
Change OURPLATFORM from "linux<major_version>" to simple "linux". Since new policy for linux kernel versions that major version in platform doesn't make much sense for building rules so the same rules could be used for both of linux2 and linux3 now/ Tested on both of linux2 and linux3 systems.
2011-08-19warning cleanup for -Wdouble-promotionCampbell Barton