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
2018-10-03Keymap: expose tool keymaps in the preferencesCampbell Barton
Currently some modes share tool keymaps, we might want to disable this since it's confusing editing one thing in multiple places. However this should be resolved in the tool definitions.
2018-09-13Merge branch 'master' into blender2.8Campbell Barton
2018-09-13PyAPI: use brief description for operator reprCampbell Barton
Only include description in docstring. Also avoid using op_get_rna.
2018-09-03Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/blenkernel/intern/collision.c
2018-09-03Spelling fixes in comments and descriptions, patch by luzpaz.Brecht Van Lommel
Differential Revision: https://developer.blender.org/D3668
2018-07-07Merge branch 'master' into blender2.8Campbell Barton
2018-07-07Cleanup: pep8Campbell Barton
2018-07-06UI/Python: rename Lamps to Lights, to follow more standard terminology.Brecht Van Lommel
Internally it's still mostly named lamps, though some modules like Cycles were already calling them lights.
2017-10-04Fix i18n messages extraction script, and a few more UI messages...Bastien Montagne
2016-08-26Fix T49158: Untranslatable elements in UI.Bastien Montagne
We cannot skip 'collections clesse' when generating i18n messages from RNA, some of them are visible and UI...
2016-08-23Fix T49150: make new 'operator categories' in search menu i18n-aware.Bastien Montagne
2016-02-09Fix T47371 - add access to 'static' enum items.Bastien Montagne
Some dynamic enums, which do not need a valid context pointer, have their 'itemf' callback always called. This is annoying for introspection tools (like the ones generating translations, or API documentation), because it means they never have access to all possible options (enum items). So now, there is also an `enum_items_static` accessor to get only statically-defined enum items. Note: only i18n tools take advantage of this currently, others are still to be updated. Reviewers: campbellbarton, sergey Differential Revision: https://developer.blender.org/D1782
2016-01-14Fix broken i18n messages extracting script with new py code.Bastien Montagne
Some py devs are way too smart for our own good... :P
2015-09-28i18n extraction tools: keep even better order of entries in PO files.Bastien Montagne
Important to avoid too much changes, especially on the git repo (we are still getting way too much changes there currently...).
2015-06-03I18n extract: better handling of commandline args.Bastien Montagne
2015-05-29Fix wrong 'check context' handling in addon i18n messages generator.Bastien Montagne
Reported (with patch) by yedpodtrzitko (yed podtrzitko), thanks a bunch! Differential Revision: https://developer.blender.org/D1327
2015-05-25I18n message extractor script: py code: do not consider strings inside ↵Bastien Montagne
'Compare' AST nodes. Otherwise, we'd get 'MOVIE' from `text="Build Proxy / Timecode" if clip.source == 'MOVIE' else "Build Proxy")`...
2015-02-13cleanupCampbell Barton
2015-01-29cleanup: pep8Campbell Barton
also remove empty class parenthesis
2014-11-14UI: Rename Addons -> Add-onsCampbell Barton
D812 by @thefallenweeble internally variable names & paths remain the same, this is for labels & tips only.
2014-09-17Cleanup: pep8Campbell Barton
2014-01-24Add support for new "bl_category" member (new panels "tabs" system).Bastien Montagne
2013-11-26i18n module cleanup: remove hack used during svn -> git transition phase!Bastien Montagne
2013-11-04Update i18n tools for new build_hash...Bastien Montagne
2013-08-18More "relpath" try/except protection...Bastien Montagne
2013-04-12More fixes for addon i18n messages management.Bastien Montagne
2013-04-09Various edits preparing addons' translations tools (not everything yet ↵Bastien Montagne
functionnal/tested, though). Also workaround a nasty bug, where unregistered py classes remain listed in relevant __subclasses__() calls, which would lead to crash with python addons i18n tools (main translation was not affected, as messages extracting tools are executed in a brand new "factory startup" Blender ;) ).
2013-03-28code cleanup: python/pep8 and double-promotion warnings.Campbell Barton
2013-03-28I18n: fix/enhance how predefined contexts are handled in py code. Now they ↵Bastien Montagne
should be specified by an attribute with the same name as the one in bpy.app.translations.contexts named tuple (i18n_contexts.default, .id_windowmanager, etc.). This way, i18n message extracting code is now able to get the right context!
2013-03-25I18n: use id_windowmanager context for keymap idnames. Solves some issues ↵Bastien Montagne
with those names (notably "Clip" one, and "Screen" too) in some translations. Also move "Key" as "Keyboard" (opposed to "Keyframe") to same context.
2013-03-25Update to i18n tools (new [CTX_]DATA_ macros, and some more exceptions to ↵Bastien Montagne
spell check...).
2013-03-19Some renaming/cleanup in i18n tools.Bastien Montagne
2013-03-11Fix more UI i18n issues (reported by Leon Cheung).Bastien Montagne
2013-03-10More UI message i18n fixes and improvements...Bastien Montagne
Fix for keyingsets tips, and make them (and a few others) findable by i18n messages extracting code (for some reasons, their bl_rna.description are void???).
2013-03-10More UI message i18n fixes and improvements...Bastien Montagne
2013-03-01More tweaks (gaining about ten seconds for each po in update branches process!).Bastien Montagne
2013-02-27Various small enhancements/fixes.Bastien Montagne
Most notable difference from now on will be that all py is handled from current blender's resource dirs, no more from source dir. Better for consistency, and avoid e.g. cycles' addon to be checked twice...
2013-02-24Another bunch of UI translation fixes, thanks to Leon Cheung, Gabriel ↵Bastien Montagne
Gazzán and S. Lockal for spotting them!
2013-02-24Big i18n tools update, I/II.Bastien Montagne
Notes: * Everything is still a bit raw and sometimes hackish. * Not every feature implemented yet. * A bunch of cleanup is still needed. * Doc needs to be updated too!