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
2012-09-05code cleanup: python - pass multiple args to string startswith() / ↵Campbell Barton
endswith() functions rather than calling multiple times.
2012-08-22error message when an addon was missing register/unregister functions whasnt ↵Campbell Barton
very good (didnt point to file with the error)
2012-06-28print warning if a script in the addons dir has no bl_info.Campbell Barton
2012-06-20style cleanupCampbell Barton
2012-04-28Addons: "persistent" parameter for addon_utils.enable(), so that you can enableBrecht Van Lommel
addons from a startup script and keep them enabled after loading .blend files.
2012-03-31move debug flag into its own global var (G.debug), split up debug options.Campbell Barton
--debug --debug-ffmpeg --debug-python --debug-events --debug-wm This makes debug output easier to read - event debug prints would flood output too much before. For convenience: --debug-all turns all debug flags on (works as --debug did before). also removed some redundant whitespace in debug prints and prefix some prints with __func__ to give some context.
2012-01-18cleanup for redefined varsCampbell Barton
2012-01-14remove api from addon bl_info, was never used.Campbell Barton
2011-11-26check if an addon exists before getting its mtimeCampbell Barton
2011-11-24pep8 edits and avoid naming conflicts with python builtinsCampbell Barton
2011-11-21also list addons_extern as testing.Campbell Barton
2011-11-18addons in contrib now have their own 'Testing' category which is off by default.Campbell Barton
2011-10-17correct spelling errors in commentsCampbell Barton
2011-09-23minor edits to recent fix for addonsCampbell Barton
2011-09-23* Some more fixes for recent move operator commit. Thomas Dinges
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-07-31py api: sphinx doc corrections, pep8 cleanup and style edits, also added ↵Campbell Barton
__all__ to some modules which were missing it.
2011-07-29pep8 cleanup, also print message when attempting to run in animation player ↵Campbell Barton
mode.
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-10cleanup for python scripts - unused vars and importsCampbell Barton
2011-04-01pep8 checker, mostly pedantic style changes but also found an error in ↵Campbell Barton
mesh_utils.mesh_linked_faces()
2011-03-28Proper traceback when addons fails AST parsing setpMartin Poirier
2011-02-25pep8 cleanupCampbell Barton
2011-02-23error in own recent moving addons functions into its own module. ↵Campbell Barton
addon_utils.reset_all failed.
2011-02-21move addon utilities into their own module, these were getting mixed between ↵Campbell Barton
bpy.utils and space_userpref.