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-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-21Minor: Other UI strings typos and tweaks.Bastien Montagne
2011-09-21remove blf.gettext, add blf.unload(font)Campbell Barton
2011-09-21remove use of gettext: _("...") style translation now its handled by rna.Campbell Barton
2011-09-21Translation: reload font on enabling/disabling use international fonts.Brecht Van Lommel
2011-09-21Blenfont: add BLF_unload function to unload/reload fonts.Brecht Van Lommel
2011-09-21Attempt to fix #28709: change language to simplified Chinese: sequencer -> ↵Sergey Sharybin
add image strip crashes Blender Crash was caused by sprintf which tried to parse bytes sequence belongs to chinese letter. Using codepage 1252 for LC_ALL seems to fix this issue, but needs further testing.
2011-09-21add missing define for last commit and tag bl_label & bl_descriptions for ↵Campbell Barton
translating too
2011-09-21py/rna string subtypes for strings which should be automatically translated:Campbell Barton
layout.prop("blah", text="Translate Me!")
2011-09-21Fix compilation for MinGW. Antony Riakiotakis
2011-09-21update_msg.py now extracts strings from UI files, eg:Campbell Barton
layout.prop("some_prop", text="Some Other Name") So the text argument can be listed for translation.
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-21updates to rna message extractor, write utf8 files and use a set rather than ↵Campbell Barton
a dict
2011-09-21Revreting 39792 making paste pose only on selected bones by default.Bastien Montagne
Will contact aligorith anyway for confirmation.
2011-09-21remove support for irixCampbell Barton
2011-09-21fix breakage in 40417 - test compile please even for doc changes.Campbell Barton
2011-09-21Minor: Other UI strings typos and tweaks.Bastien Montagne
2011-09-21SVN maintenance.Guillermo S. Romero
2011-09-20pep8 update & some minor cmake edits.Campbell Barton
2011-09-20move message.txt generator out of wm.py (which was loaded with blender ↵Campbell Barton
always), into it own py script which runs on its own, also added this to 'make translations' target.
2011-09-20Reserved modifier enum for Dynamic Paint to not break save files again.Miika Hamalainen
2011-09-20Another set of fixes for MSVCSergey Sharybin
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-20Fix for recent commit:Sergey Sharybin
- Some declarations after statement left. - Do not use static inline functions in MOD_navmesh. It produces errors with msvc and not sure it's actually helps -- optimizer should make it inlined itself.
2011-09-20Get rid of c++ in blenkernel and modifiersSergey Sharybin
Also use guarded allocations for navmesh stuff.
2011-09-20Internationalization: fix OS X scons install to copy font and language filesBrecht Van Lommel
correctly.
2011-09-20SVN maintenance.Guillermo S. Romero
2011-09-20(no commit message)Campbell Barton
2011-09-20have blf.gettext even when internationalization is disabled (just passes ↵Campbell Barton
through).
2011-09-20Fix for BLI_ungzip_to_mem: it'll return NULL now if file is not found.Sergey Sharybin
It makes default bfont used if unifont isn't found. Useful for install-less launch when debugging.
2011-09-20Ignore .Blanguages and .bfont.ttf when installing.Sergey Sharybin
This files aren't used by blender anymore but they leads to portable install when using scons.
2011-09-20We are now in Bcon 3 - Beta.Thomas Dinges
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-20committed change to transforms THRESHOLD by accident, also update ↵Campbell Barton
convenience makefile to regenerate real makefiles before static checking.
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: fake_gettext is no longer needed for pythonSergey Sharybin
2011-09-20i18n: forgot this files in recent commitSergey Sharybin
2011-09-20Minor: Other UI strings typos and tweaks.Bastien Montagne
2011-09-20Don't set BF_NUMJOBS in default config, but instead let users do that in ↵Nathan Letwory
user-config.py.
2011-09-20i18n: replace some bit checks from U.transopts with utility functions ↵Sergey Sharybin
UI_translate*
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-20fix from Juha Mäki-Kanto (kanttori), was calculating connectivity data when ↵Campbell Barton
proportional editmode was enabled, even if connectivity setting was off.
2011-09-20changes for materials to treat them as shorts not int/chars (since they are ↵Campbell Barton
stored as shorts intermally) - converting nurbs to mesh was casting the material to unsigned char. - subsurf was casting to char, then int -> short in a loop. - have material functions take & return shorts.
2011-09-20texface - quick speedupDalai Felinto
I doubt this makes any difference but still, good practises are always good.
2011-09-20fix for bug in do_version_tface(), was assigning 'tf->mode' before tf was ↵Campbell Barton
defined, also comment unused var.
2011-09-20fix possible crasg in recent texface commit - material pointer could be used ↵Campbell Barton
un-inirialized.