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-19Merging r40345 through r40365 from trunk into soc-2011-garlicSergey Sharybin
2011-09-19/release/scripts: Removed final points in UI strings and messages.Bastien Montagne
2011-09-19i18n: do not translate obect mode enum and transform orientation enum if UI ↵Sergey Sharybin
translation is disabled
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-07Apply patch [#28415] 3d mouse orbit mode individual axes enhancementNathan Letwory
Submitted by Rainer Wahler This patch enables individual axis inversion in trackball mode.
2011-09-01merge with trunk r39834Xiao Xiangquan
2011-08-19py style change only - make property definitions consistentCampbell Barton
2011-08-12import common classes from bpy.types, saves ~1000 python getattrs on startup.Campbell Barton
2011-08-10merge with trunk r39216Xiao Xiangquan
2011-08-09fix [#28191] Exception when enabling a script for a newer Blender buildCampbell Barton
2011-08-07fix [#28172] Cannot restore Add-ons tab in user preferences after a failed ↵Campbell Barton
attempt to install an add-on. non utf8 addons would make the addon UI vanish, now give a message in the console and UI.
2011-08-05move the ndof menu into the userpref's since it adjusts preferences, also ↵Campbell Barton
renamed VIEW3D_MT_ndof_settings -> USERPREF_MT_ndof_settings since it has no view3d specific settings.
2011-08-02fix [#28148] User Preferences Scripts Path not workingCampbell Barton
2011-07-29merge with trunk r38787Xiao Xiangquan
2011-07-29svn merge -r38753:38813 ↵Nathan Letwory
https://svn.blender.org/svnroot/bf-blender/trunk/blender .
2011-07-22switch language in User Preference's System page. with some known switch ↵Xiao Xiangquan
failure bugs
2011-07-22Show NDOF sensitivity field in userprefsNathan Letwory
2011-07-18fix [#28005] Python Add-Ons are constantly reloaded if twice in the pathCampbell Barton
Addons are checked for their timestamps and reloaded when it changes but this failed when, 2 addons had the same name since different times caused 2 reloads on every redraw. Now when duplicate addons are in the path now give a error message in the UI and print path conflict in the console and don't thrash reloading.
2011-07-14merge from trunk 38379Xiao Xiangquan
2011-07-11make python3.3 compatible, __class__ is no longer in the class methods ↵Campbell Barton
namespace.
2011-07-10fix for various python bugs and remove unused var.Campbell Barton
2011-07-01minor pep8 editsCampbell Barton
2011-06-29Addon UI: button for removing addons which are installed to user/home paths, ↵Campbell Barton
this is not displayed for system addons, or ones which come with blender.
2011-06-24merge from trunk #37722Xiao Xiangquan
2011-06-23Fix typo in addon user preferences menu.Brecht Van Lommel
2011-06-20handle SpaceType and UserPref popupsXiao Xiangquan
2011-06-15Committing patch #25676 Anisotropic filtering in viewport and BGE by me.Mitchell Stokes
This patch adds anisotropic filtering of textures in the viewport and the BGE. The quality of the filtering is adjustable in the user preferences under System. For more information on anisotropic filtering: http://en.wikipedia.org/wiki/Anisotropic_filtering One current limitation of this setup (having the option a user preference) is it makes runtimes more troublesome. Runtimes don't have user preferences set, so for now the blender player defaults to 2x AF. Options will be added later to change this value (probably a command line option).
2011-06-15merge from trunk r37405Xiao Xiangquan
2011-06-13Fix/Workaround for [#27643] drawing glitch:Thomas Dinges
* Removed the Icon of the menu, when an icon is used, it draws a triangle icon, assuming it is a sub menu.
2011-06-02addons now show expanded list again (since Brecht's commit now makes it fast)Campbell Barton
also add utility function for getting cleaned, unique names from python: bpy_extras.io_utils.unique_name(...)
2011-05-26use a dynamic enum for addons, annoyingly the enum was being generated from ↵Campbell Barton
python for each of the addon buttons (~14 times per draw) which was noticeably slow, so disabling 'expand' for now. Eventually it would be good to have the expanded buttons all using the same result from itemf().
2011-05-23fix [#27459] Flymode moves parentCampbell Barton
for durian we had camera rigs which needed to have the parent transformed rather then the camera, for this reason I made fly mode fly the parent rather then the camera its self. Make this a preference and use this for view camera/view locking too.
2011-05-19py/ui edit: change InputKeyMapPanel to be a mix-in class only (not a ↵Campbell Barton
subclass of Panel), it messes up re-registering panels.
2011-05-05alternative to joe's commit r36451.Campbell Barton
loopcut now follows 'Release confirms' user preference.
2011-05-04fix 2 bugs with addon installationCampbell Barton
- installing an addon which creates a new script directory didn't add this to the sys.path. - installing the addon was meant to set the search string to the addon name but was broken.
2011-05-03=trunk=Joseph Eagar
Recommitted eltopo collision code (but disabled by default) with Genscher's permission. To use, you need to install liblapack and libblas
2011-04-22zoom operator.Campbell Barton
- continue zoom now uses the same options as dolly (hoz/vert & invert). - remove event mouse coord hack to bypass touchpad zoom invert, instead pass invert as an argument.
2011-04-05add support for installing addons to custom script path [#26751] installing ↵Campbell Barton
addon to custom script directory doesn't work
2011-04-04fix [#26754] Live Edit and Editing UI scripts don't workCampbell Barton
2011-04-01pep8 checker, mostly pedantic style changes but also found an error in ↵Campbell Barton
mesh_utils.mesh_linked_faces()
2011-03-28Crouch on IRC noticed inconsistency between name COLOR_SETS & attribute ↵Campbell Barton
bone_color_sets
2011-03-28[#24658] Switching to "maya" via interaction preset breaks when switching backMartin Poirier
[#25045] User Preferences Input, not enough menu choices [#26525] Saving the Maya preset and another key configs Untangle keyconfig presets and interaction presets (maya keyconfig would set interaction setting, blender interaction would set keyconfig). Preset menu on slash screen now displays a list of available keyconfigs (as before) but will also set the correspondant interaction presets, if it exists)
2011-03-26Fix for Mac addon install, unzipping could create __MACOSX folder whichBrecht Van Lommel
we don't need, just remove it if it gets created.
2011-03-21move script directories for internal blender scripts.Campbell Barton
ui/ --> startup/bl_ui op/ --> startup/bl_operators scripts/startup/ is now the only auto-loading script dir which gives some speedup for blender loading too. ~/.blender/2.56/scripts/startup works for auto-loading scripts too.